home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 20
/
Cream of the Crop 20 (Terry Blount) (1996).iso
/
windows
/
readfi11.zip
/
CRC.H
< prev
next >
Wrap
Text File
|
1996-05-05
|
1KB
|
23 lines
// --------------------------------------------------------------------------
// PROJECT SOLO2
// MODULE CRC.H
// PURPOSE 32 bit CRC routines
// COPYRIGHT (c) Francois Liger, 1994
// --------------------------------------------------------------------------
// COMMENTS CRC 32 header file
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// module wide definitions
// --------------------------------------------------------------------------
#define CRC_BUFFER_SIZE 512 // CRC file read buffer size
// --------------------------------------------------------------------------
// function prototypes
// --------------------------------------------------------------------------
void InitializeCRCTable(void);
DWORD ComputeBufferCRC(DWORD dwCRC, void *pvBuffer, DWORD cbBuffer);
DWORD ComputeFileCRC(HANDLE hfile, LPOVERLAPPED lpOverlapped);